home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1997 #1
/
Amiga Plus CD - 1997 - No. 01.iso
/
pd
/
programmierung
/
installproged
/
sasc_support
/
nexterror.script
< prev
next >
Wrap
Text File
|
1996-03-11
|
449b
|
31 lines
/*******************************************
*
* NextError.script
* by Giovanni Lambiase (C) 1995
*
* This Arexx macro jump to Next error in
* SCMSG list.
*
*******************************************/
OPTIONS RESULTS
OPTIONS FAILAT 31
IF SHOW('PORTS','SC_SCMSG') THEN
DO
ADDRESS 'SC_SCMSG'
/* If no errors -> close SCMSG */
'TEXT'
IF RESULT='' THEN
DO
'HIDE'
END
ELSE
DO
/* Jump to next error */
'NEXT'
'SELECT'
END
END